home *** CD-ROM | disk | FTP | other *** search
/ PCNET 2006 September - Disc 3 / PCNET_CD_2006_09_3.iso / apps / Install_Babya_Logic.exe / {app} / samples / Multiple Instruments2.msc < prev    next >
Encoding:
Text File  |  1999-11-02  |  408 b   |  26 lines

  1. MScript VER:1
  2. TIMER:60
  3.  
  4. TuneStart:Main
  5. --Play same notes on different instruments. 
  6. --Good music for some detective kind of serial (;-)
  7.  
  8. 'Execute this loop 5 times
  9. SET:LoopCount,5
  10.  
  11. LABEL:TOP
  12.  
  13. SET:InstrumentNum,55
  14. LABEL:InstrumentLoop
  15.  
  16. INSTRUMENT:InstrumentNum
  17. a b c d 
  18.  
  19. MATH:InstrumentNum,--
  20. IF:InstrumentNum,>,35,InstrumentLoop
  21.  
  22. MATH:LoopCount,--
  23. IF:LoopCount,>,0,TOP
  24.  
  25. TuneEnd:Main
  26.